home *** CD-ROM | disk | FTP | other *** search
/ BigMax 21 / BigMax nº 21 / BigMax nº 21.iso / big21.dir / Internal_47_Video Rewind.ls < prev    next >
Encoding:
Text File  |  1998-06-25  |  615 b   |  24 lines

  1. property videoSprite
  2.  
  3. on mouseUp me
  4.   set the movieTime of sprite the videoSprite of me to 0
  5. end
  6.  
  7. on getPropertyDescriptionList
  8.   set p_list to [#videoSprite: [#comment: "Video Sprite Channel:", #format: #integer, #default: 1]]
  9.   return p_list
  10. end
  11.  
  12. on getBehaviorDescription
  13.   return "Rewinds a digital video sprite in the current frame. Attach to a button with the appropriate label." & RETURN & "PARAMETERS:" & RETURN & "ΓÇó Video Sprite - Enter the number of the sprite channel in which the video is displayed."
  14. end
  15.  
  16. on mouseEnter me
  17.   cursor(280)
  18.   puppetSound(3, "Tool")
  19. end
  20.  
  21. on mouseLeave me
  22.   cursor(-1)
  23. end
  24.